home *** CD-ROM | disk | FTP | other *** search
- head 1.1;
- branch ;
- access ;
- symbols srv030:1.1 srv027:1.1 srv026:1.1 srv024:1.1 srv021:1.1 srv019:1.1 srv018:1.1 srv016:1.1 srv014:1.1 srv010:1.1 srv008:1.1 srv007:1.1 srv006:1.1 srv005:1.1 srv004:1.1 srv003:1.1;
- locks ; strict;
- comment @ * @;
-
-
- 1.1
- date 92.04.29.22.34.20; author kupfer; state Exp;
- branches ;
- next ;
-
-
- desc
- @Instrumentation about system load, etc.
- @
-
-
-
- 1.1
- log
- @Initial revision
- @
- text
- @/*
- * sched.h --
- *
- * Instrumentation about system load, etc. This header file contains
- * the remains of the native Sprite kernel/sched.h.
- *
- * Copyright 1992 Regents of the University of California
- * Permission to use, copy, modify, and distribute this
- * software and its documentation for any purpose and without
- * fee is hereby granted, provided that this copyright
- * notice appears in all copies. The University of California
- * makes no representations about the suitability of this
- * software for any purpose. It is provided "as is" without
- * express or implied warranty.
- *
- * $Header: /sprite/lib/forms/RCS/proto.h,v 1.8 92/03/02 15:32:57 bmiller Exp $ SPRITE (Berkeley)
- */
-
- #ifndef _SCHED
- #define _SCHED
-
- #include <spriteTime.h>
-
- #define MACH_NUM_LOAD_VALUES 3
-
- /*
- * System instrumentation returned by the Sys_Stats SYS_SCHED_STATS call.
- */
-
- typedef struct {
- double avenrun[MACH_NUM_LOAD_VALUES]; /* load average from Mach */
- Time noUserInput; /* time since last console input */
- } Sched_Instrument;
-
- #endif /* _SCHED */
- @
-